home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 10 / FM Towns Free Software Collection 10.iso / ms_dos / tool / dbench / softtime / getcps.asm next >
Assembly Source File  |  1995-01-23  |  282b  |  25 lines

  1.     .MODEL SMALL,C
  2.     .CODE
  3.  
  4. ST_getcallpersec PROC uses si di
  5.     xor    si,si
  6.     xor    di,di
  7.     mov    ah,2ch
  8.     int    21h
  9.     mov    bh,dh
  10. @@:    int    21h
  11.     cmp    bh,dh
  12.     je    @b
  13.  
  14.     mov    bh,dh
  15. @@:    int    21h
  16.     add    si,1
  17.     adc    di,0
  18.     cmp    bh,dh
  19.     je    @b
  20.     mov    ax,si
  21.     mov    dx,di
  22.     ret
  23. ST_getcallpersec ENDP
  24.     END
  25.